home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / misc1 / iv26_w30.zip / INTERVIE / X11 / WINDATA.H < prev    next >
C/C++ Source or Header  |  1992-02-20  |  515b  |  31 lines

  1. #ifndef windata_h
  2. #define windata_h
  3.  
  4. #include <InterViews\defs.h>
  5. #include <windows.h>
  6.  
  7. class Interactor;
  8. class Scene;
  9. class Bitmap;
  10.  
  11. class WindowData {
  12. private:
  13.     friend class Interactor;
  14.     friend class Scene;
  15.  
  16.     WindowData();
  17.     ~WindowData();
  18.  
  19.     HICON GetWndIcon();
  20.     HICON MakeWndIcon(Bitmap*, Bitmap*);
  21.     void* GetWndClass();
  22.     const char* GetWndName();
  23.     DWORD GetWndStyle();
  24.  
  25.     char        class_name[9];
  26.     Interactor* ia;
  27.     HICON       hIcon;
  28. };
  29. #endif
  30.  
  31.